nunta/docker-compose.yml

28 lines
828 B
YAML

version: '3.9'
services:
httpd:
build:
context: .
container_name: httpd
hostname: httpd
stdin_open: true
tty: true
environment:
- SPERLING_ENVIRONMENT=docker
- DANCER_ENVIRONMENT=docker
- PLACK_ENV=development
volumes:
- .:/opt/httpd:rw
- .bash_history:/root/.bash_history:rw
- ~/.ssh:/root/.ssh:ro
- ~/.dotFiles/.gitconfig-base:/root/.gitconfig-base:ro
- ~/.dotFiles/.gitconfig-liviu:/root/.gitconfig:ro
- ~/.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
working_dir: /opt/httpd