forked from agustin-golmar/Flex-Bison-Compiler
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcompose.yaml
More file actions
45 lines (42 loc) · 1.16 KB
/
Copy pathcompose.yaml
File metadata and controls
45 lines (42 loc) · 1.16 KB
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
# @see https://docs.docker.com/compose/compose-file/
name: "ar-edu-itba-atlyc"
# @see https://docs.docker.com/reference/compose-file/extension/
x-shared:
environment: &environment
ENVIRONMENT: "${ENVIRONMENT:-Local}"
LOG_IGNORED_LEXEMES: "${LOG_IGNORED_LEXEMES:-true}"
LOGGING_LEVEL: "${LOGGING_LEVEL:-ALL}"
networks:
ar-edu-itba-atlyc:
attachable: true
driver_opts:
com.docker.network.bridge.host_binding_ipv4: "127.0.0.1"
driver: "bridge"
enable_ipv4: true
enable_ipv6: false
name: "ar-edu-itba-atlyc"
services:
compiler:
build:
context: "."
dockerfile: "src/main/docker/compiler/Dockerfile"
develop:
watch:
- action: rebuild
path: "src/main/docker/compiler/"
env_file:
- path: ".env"
required: false
environment:
<<: *environment
DISPLAY: "${DISPLAY:-:0}"
networks:
ar-edu-itba-atlyc:
aliases:
- "compiler.atlyc.itba.edu.ar"
pull_policy: "missing"
user: "ubuntu:ubuntu"
volumes:
- ".:/home/ubuntu/Flex-Bison-Compiler"
- "/tmp/.X11-unix:/tmp/.X11-unix"
working_dir: "/home/ubuntu/Flex-Bison-Compiler"