-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
41 lines (39 loc) · 961 Bytes
/
docker-compose.yml
File metadata and controls
41 lines (39 loc) · 961 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
40
41
version: '2'
services:
aldea-database:
image: mariadb:10.1
command: mysqld --character-set-server=utf8 --collation-server=utf8_unicode_ci
environment:
MYSQL_DATABASE: aldea_development
MYSQL_ROOT_PASSWORD: root
volumes:
- aldea:/var/lib/mysql
networks:
- neeco
aldea-application:
image: registry.neec.xyz/dev/aldea-application:latest
environment:
ALDEA_PORT: 3000
ALDEA_DATABASE_HOST: aldea-database
ALDEA_DATABASE_USER: root
ALDEA_DATABASE_PASSWORD: root
ALDEA_SECRET_KEY_BASE: x
CUENTA_URL: http://cuenta-application:4000/
IMAGEN_URL: http://imagen-application:8000/
STATIC_IMAGE_URL: http://localhost/
RAILS_ENV: development
depends_on:
- aldea-database
ports:
- "3000:3000"
volumes:
- .:/app
networks:
- neeco
volumes:
aldea:
driver: local
networks:
neeco:
external:
name: neeco_develop