mirror of
https://github.com/usmannasir/cyberpanel.git
synced 2025-11-11 07:46:10 +01:00
Added Volume mapping to docker app
This commit is contained in:
20
dockerManager/migrations/0002_containers_volumes.py
Normal file
20
dockerManager/migrations/0002_containers_volumes.py
Normal file
@@ -0,0 +1,20 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
# Generated by Django 1.11 on 2019-01-26 16:22
|
||||
from __future__ import unicode_literals
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('dockerManager', '0001_initial'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AddField(
|
||||
model_name='containers',
|
||||
name='volumes',
|
||||
field=models.TextField(default='{}'),
|
||||
),
|
||||
]
|
||||
Reference in New Issue
Block a user