-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcompose.yaml
68 lines (66 loc) · 2.34 KB
/
compose.yaml
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
services:
postgres:
image: postgres:latest
restart: always
container_name: DOKO
ports:
- 4000:5432
env_file:
- .env
volumes:
- postgres:/data/postgres
volumes:
postgres:
# Example
# services:
# web: # Next.js Frontend
# build:
# dockerfile: web.Dockerfile # Path to web Dockerfile
# ports:
# - "3000:3000" # Reachable on localhost:3000
# depends_on:
# - api # Start after the API
# develop:
# watch:
# - action: sync # Synchronize the files on your host ./apps/web with your containers /app/apps/web when any file changes in that path
# path: ./apps/web
# target: /app/apps/web
# ignore:
# - node_modules/
# - action: sync # Same as above but with component library
# path: ./packages/ui
# target: /app/packages/ui
# ignore:
# - node_modules/
# - action: rebuild # Rebuild if the package.json changes
# path: package.json
# - action: rebuild
# path: ./apps/web/package.json
# api:
# build:
# dockerfile: api.Dockerfile # Path to API Dockerfile
# ports:
# - "3001:3000" # Reachable on localhost:3001, or api:3000 from within the Docker network
# depends_on:
# - postgres # Start after the database
# environment:
# - DATABASE_URL=postgres://postgres:postgres@postgres:5432/hackathon # Hardcoded database credentials are usually a no-go, but totally fine in this situation
# develop:
# watch:
# - action: sync # Synchronize the files on your host ./apps/api with your containers /app/apps/api when any file changes in that path
# path: ./apps/api
# target: /app/apps/api
# ignore:
# - node_modules/
# - action: rebuild # Rebuild container if the package.json changes
# path: package.json
# - action: rebuild
# path: ./apps/api/package.json
# postgres: # Postgres Database
# image: postgres:latest
# ports:
# - "5432:5432" # Reachable on localhost:5432 if you want to connect with something like DataGrip
# environment: # Again, usually not a good idea to use these hardcoded credentials but okay for a hackathon
# POSTGRES_USER: postgres
# POSTGRES_PASSWORD: postgres
# POSTGRES_DB: postgres