nunta/docker-compose.yml

28 lines
828 B
YAML
Raw Permalink Normal View History

2023-08-03 16:33:58 +02:00
version: '3.9'
services:
2023-08-05 10:43:11 +02:00
httpd:
2023-08-03 16:33:58 +02:00
build:
context: .
2023-08-05 10:43:11 +02:00
container_name: httpd
hostname: httpd
2023-08-03 16:33:58 +02:00
stdin_open: true
tty: true
environment:
- SPERLING_ENVIRONMENT=docker
- DANCER_ENVIRONMENT=docker
- PLACK_ENV=development
volumes:
2023-08-05 10:43:11 +02:00
- .:/opt/httpd:rw
2023-08-03 16:33:58 +02:00
- .bash_history:/root/.bash_history:rw
- ~/.ssh:/root/.ssh:ro
- ~/.dotFiles/.gitconfig-base:/root/.gitconfig-base:ro
2023-08-03 16:34:12 +02:00
- ~/.dotFiles/.gitconfig-liviu:/root/.gitconfig:ro
2023-08-03 16:33:58 +02:00
- ~/.dotFiles/.bash_profile:/root/.bash_profile:ro
- ~/.dotFiles/.bashrc:/root/.bashrc:ro
- ~/.dotFiles/.bashrc.tmux:/root/.bashrc.tmux:ro
- ~/.dotFiles/.tmux.conf:/root/.tmux.conf:ro
- ~/.dotFiles/.tmux:/root/.tmux:ro
- ~/.vimrc:/root/.vimrc:ro
- ~/.vim:/root/.vim:ro
2023-08-05 10:43:11 +02:00
working_dir: /opt/httpd