Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/joshnuss/svelte-kit-with-docker

Run your SvelteKit dev environment with Docker
https://github.com/joshnuss/svelte-kit-with-docker

Last synced: about 1 month ago
JSON representation

Run your SvelteKit dev environment with Docker

Awesome Lists containing this project

README

        

# SvelteKit + Prisma + Docker

Runs SvelteKit in a Docker container, with Postgres in a second container.

### Usage

Start the containers:

```bash
docker compose up --build
```

The site is now running on `localhost:5173`

```bash
open localhost:5173
```

Postgres is also running, on port `5433`. To connect:

```bash
psql --user=postgres --password --host=localhost --port=5433 postgres
```

The password is `postgres`

## License

MIT