Skip to content
Snippets Groups Projects
Commit 648e30b3 authored by Vincent Andreas Witzmann's avatar Vincent Andreas Witzmann
Browse files

Update 3 files

- /webserver/web-frontend/Dockerfile
- /webserver/docker-compose.yaml
- /webserver/docker-compose-git.yaml
parent 9cf5453a
Branches main
No related tags found
No related merge requests found
version: "3"
services:
webpage:
image: git-registry.gibb.ch/vwi142658/m347/website
ports:
- "8000:80"
version: "3"
services:
webpage:
build: ./web-frontend
ports:
- "8000:80"
FROM ubuntu:latest
MAINTAINER Vincent Andreas Witzmann
RUN apt-get update && \
apt-get install -y apache2 && \
apt-get clean
COPY ./webpage /var/www/html/
EXPOSE 80
CMD ["apache2ctl", "-D", "FOREGROUND"]
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment