-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
39 lines (39 loc) · 854 Bytes
/
docker-compose.yml
File metadata and controls
39 lines (39 loc) · 854 Bytes
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
services:
app:
image: ghcr.io/openpoke/decidim-hacks:main
build: .
volumes:
- .:/app
- bundle:/usr/local/bundle
environment:
- PORT=3000
- DATABASE_HOST=pg
- DATABASE_USERNAME=postgres
- DATABASE_PASSWORD=postgres
- RAILS_ENV=development
- RAILS_LOG_TO_STDOUT=""
ports:
- 3000:3000
- 3035:3035
- 3035:3035/udp
links:
- pg
restart: "no"
pg:
image: postgres:17-alpine
environment:
- POSTGRES_PASSWORD=postgres
- POSTGRES_USER=postgres
volumes:
- pg-data:/var/lib/postgresql/data
openvscode-server:
image: "gitpod/openvscode-server"
volumes:
- .:/home/workspace:cached
environment:
- VSCODE_PLUGINS='ruby-on-rails,autocomplete-ruby'
ports:
- 8080:3000
volumes:
bundle: {}
pg-data: {}