-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.yaml
81 lines (81 loc) · 1.8 KB
/
docker-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
69
70
71
72
73
74
75
76
77
78
79
80
81
name: atlantic
services:
overtools:
build:
context: /Users/Shared/Go/Atlantic
dockerfile: Dockerfile.overtools
environment:
DATABASE_HOST: postgres
PGDATABASE: test
PGHOST: postgres
PGPASSWORD: secret
PGUSER: superuser
POSTGRES_DB: test
POSTGRES_PASSWORD: secret
POSTGRES_USER: superuser
image: overtools:latest
networks:
default: null
ports:
- mode: ingress
target: 12121
published: "12121"
protocol: tcp
postgres:
profiles:
- docker
command:
- -c
- config_file=/etc/postgresql/postgresql.conf
container_name: postgres
environment:
POSTGRES_DB: test
POSTGRES_PASSWORD: secret
POSTGRES_USER: superuser
image: cgr.dev/chainguard/postgres:latest
labels:
kompose.volume.size: 1Gi
networks:
default: null
ports:
- mode: ingress
target: 5432
published: "5432"
protocol: tcp
restart: always
volumes:
- type: volume
source: pg-data
target: /var/lib/postgresql/data
volume: {}
- type: bind
source: /Users/Shared/Go/Atlantic/config/postgres/postgresql.conf
target: /etc/postgresql/postgresql.conf
bind:
create_host_path: true
skitty:
build:
context: /Users/Shared/Go/Atlantic
dockerfile: Dockerfile.skitty
args:
VITE_DOMAIN: http://atlantic.shark.run
deploy:
resources:
limits:
cpus: 0.5
memory: "268435456"
image: skitty:latest
networks:
default: null
ports:
- mode: ingress
target: 3000
published: "3000"
protocol: tcp
networks:
default:
name: atlantic
driver: bridge
volumes:
pg-data:
name: atlantic_pg-data