-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.yml
46 lines (43 loc) · 1017 Bytes
/
docker-compose.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
version: "3.3"
services:
lists:
container_name: lists
image: ghcr.io/suggestionsbot/lists:latest
env_file:
- .env # check .env.example for details
restart: always
ports:
- "3000:3000"
networks:
- lists
psql:
container_name: psql
image: postgres:latest
restart: always
environment:
POSTGRES_USER: ${POSTGRES_USER} # the username for the default postgres user
POSTGRES_PASSWORD: ${POSTGRES_PASSWORD} # the password for the default postgres user
POSTGRES_DB: ${POSTGRES_DB} # the database for the postgres instance
volumes:
- "pgdata:/var/lib/postgresql/data"
ports:
- "5432:5432"
networks:
- lists
migrate:
image: migrate/migrate
depends_on:
- psql
env_file:
- .env
networks:
- lists
volumes:
- ./migrations:/migrations
command:
[ "-path", "/migrations", "-database", "${POSTGRES_URL}", "up" ]
networks:
lists:
internal: true
volumes:
pgdata: