23 líneas
350 B
YAML
23 líneas
350 B
YAML
version: '2'
|
|
|
|
services:
|
|
theia:
|
|
image: theiaide/theia
|
|
restart: always
|
|
hostname: theia
|
|
container_name: theia
|
|
volumes:
|
|
- ./project:/home/project
|
|
expose:
|
|
- 3000
|
|
networks:
|
|
mynet:
|
|
ipv4_address: 172.18.0.101
|
|
|
|
networks:
|
|
mynet:
|
|
driver: bridge
|
|
ipam:
|
|
config:
|
|
- subnet: 172.18.0.0/24
|