diff options
| author | Santo Cariotti <santo@dcariotti.me> | 2024-09-06 14:29:40 +0000 |
|---|---|---|
| committer | Santo Cariotti <santo@dcariotti.me> | 2024-09-06 14:29:40 +0000 |
| commit | b8b0f661e6857731215798c6759e0ade9b3099f6 (patch) | |
| tree | f5b887aec46e5521f90da61d98267d2170daebc6 /docker-compose.yml | |
| parent | ff68c8cd24baef66ebb038d237b8f501c84edde5 (diff) | |
Fix scripts and add compose
Diffstat (limited to 'docker-compose.yml')
| -rw-r--r-- | docker-compose.yml | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/docker-compose.yml b/docker-compose.yml new file mode 100644 index 0000000..163890c --- /dev/null +++ b/docker-compose.yml @@ -0,0 +1,37 @@ +version: "3" +services: + postgres: + image: postgis/postgis:16-3.4 + container_name: postgis + environment: + - POSTGRES_USER=postgres + - POSTGRES_PASSWORD=password + - POSTGRES_DB=gis + ports: + - "5433:5432" + volumes: + - pgdata:/var/lib/postgresql/data + - ./schema:/docker-entrypoint-initdb.d + networks: + - default + + cas: + image: ghcr.io/cas-4/backend:latest + container_name: cas + networks: + - default + + environment: + - RUST_LOG=${RUST_LOG} + - DATABASE_URL=${DATABASE_URL} + - JWT_SECRET=${JWT_SECRET} + - ALLOWED_HOST=${ALLOWED_HOST} + - EXPO_ACCESS_TOKEN=${EXPO_ACCESS_TOKEN} + + depends_on: + - postgres + ports: + - "8000:8000" + restart: unless-stopped +volumes: + pgdata: |
