Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/imanilchaudhari/docker-ubuntu
Docker image built on ubuntu with Apache, PHP, Composer & more.
https://github.com/imanilchaudhari/docker-ubuntu
Last synced: about 2 months ago
JSON representation
Docker image built on ubuntu with Apache, PHP, Composer & more.
- Host: GitHub
- URL: https://github.com/imanilchaudhari/docker-ubuntu
- Owner: imanilchaudhari
- License: apache-2.0
- Created: 2020-06-04T13:34:59.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2024-09-08T08:22:57.000Z (4 months ago)
- Last Synced: 2024-09-08T09:34:37.074Z (4 months ago)
- Language: Dockerfile
- Homepage:
- Size: 14.6 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# docker-ubuntu
Docker image built on ubuntu:20.04 with Apache, PHP, Composer & more.## sample docker-compose.yml
```
version: '3'
services:
app:
image: imanilchaudhari/docker-ubuntu:22.04
restart: 'no'
ports:
- 8010:80
volumes:
- './:/var/www/html/'
- './docker/app/app.conf:/etc/apache2/sites-available/000-default.conf'
- './docker/php/php.ini:/etc/php/8.1/apache2/php.ini'
- './docker/php/php.ini:/etc/php/8.1/cli/php.ini'
links:
- mariadb
- mailhog
mariadb:
image: 'mariadb:10.3.28'
restart: 'no'
environment:
MYSQL_ROOT_PASSWORD: root
MYSQL_DATABASE: 'database'
adminer:
image: adminer
restart: 'no'
links:
- mariadb
ports:
- 8011:8080
mailhog:
image: mailhog/mailhog
restart: 'no'
ports:
- 1025:1025
- 8025:8025```